projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6be3383
)
(vhdl-comment-uncomment-region): Remove two comment characters at start
author
Francesco Potortì
<pot@gnu.org>
Tue, 4 Mar 2003 14:43:03 +0000
(14:43 +0000)
committer
Francesco Potortì
<pot@gnu.org>
Tue, 4 Mar 2003 14:43:03 +0000
(14:43 +0000)
of line instead of one.
lisp/progmodes/vhdl-mode.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/vhdl-mode.el
b/lisp/progmodes/vhdl-mode.el
index 9827ad3696e76156eff6de90353f51110feb9401..f11b04d8fe50ee6e6dd5300b88501261f07fa941 100644
(file)
--- a/
lisp/progmodes/vhdl-mode.el
+++ b/
lisp/progmodes/vhdl-mode.el
@@
-7568,7
+7568,7
@@
If starting after end-comment-column, start a new line."
(beginning-of-line)
(setq beg (point))
(if (looking-at comment-start)
- (comment-region beg end -
1
)
+ (comment-region beg end -
2
)
(comment-region beg end))))
(defun vhdl-comment-uncomment-line (&optional arg)